home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / NDK / NDK_3.5 / Include / include_h / gadgets / page.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-10-19  |  1.1 KB  |  47 lines

  1. #ifndef GADGETS_PAGE_H
  2. #define GADGETS_PAGE_H
  3. /*
  4. **    $VER: page.h 44.1 (19.10.1999)
  5. **    Includes Release 44.1
  6. **
  7. **    Page gadget definitions
  8. **
  9. ** Page gadget is part of layout.gadget
  10. **
  11. **    (C) Copyright 1987-1999 Amiga, Inc.
  12. **        All Rights Reserved
  13. */
  14.  
  15. /*****************************************************************************/
  16.  
  17. #ifndef REACTION_REACTION_H
  18. #include <reaction/reaction.h>
  19. #endif
  20.  
  21. #ifndef INTUITION_GADGETCLASS_H
  22. #include <intuition/gadgetclass.h>
  23. #endif
  24.  
  25. /*****************************************************************************/
  26.  
  27. #define PAGE_Dummy                (TAG_USER+0x04200000)
  28.  
  29. #define PAGE_Add                (PAGE_Dummy+1)
  30. /*    (Object *)
  31.  *    Add a page to the end of a page group */
  32.  
  33. #define PAGE_Remove                (PAGE_Dummy+2)
  34. /*    (Object *)
  35.  *    Remove a page from the page group */
  36.  
  37. #define PAGE_Current            (PAGE_Dummy+3)
  38. /*    (ULONG)
  39.  *    Make the n'th page visible. Can be directly connected with tabs.gadget */
  40.  
  41. #define PAGE_FixedVert            (PAGE_Dummy+4)
  42. #define PAGE_FixedHoriz            (PAGE_Dummy+5)
  43. /*    (BOOL)
  44.  *    Same function as layout.gadget Fixed tags */
  45.  
  46. #endif /* GADGETS_PAGE_H */
  47.